.aboutUs-title {
    height: 36rem;
    background-image: url(../image/background.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column-reverse;
}

.aboutUs-subtitle {
    width: 80%;
    text-align: end;
    margin: 0 auto 4rem;
}

/* information */

.aboutUs-info {
    width: 80%;
    margin: 4rem auto 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutUs-left {
    width: 47%;
    text-align: justify;
    margin-right: 6%;
}

.aboutUs-right {
    width: 47%;
}

.aboutUs-right img {
    width: 100%;
}

@media(max-width: 576px) {
    .aboutUs-info {
        flex-direction: column-reverse;
    }

    .aboutUs-left {
        width: 90%;
    }
    
    .aboutUs-right {
        width: 90%;
    }
}